Hello,
I'm hoping this community can help me find a good alteative!
I'm using cryptsync on windows. It's a slick little app that works as folows:
I use the above method whereby I copy the zipped and encrypted files from the second folder to my offiste (cloud) storage. In this way I own the encryption key for offiste backup in case my cloud storage is . I know it means double the space is used within my LAN to have two copies of each file...but it also means that my offsite storage backup only backs up files that have changed so offsite copy is quicker. ![]()
I'm looking for a Linux alteative to the above though. Cryptsync runs as a service on Windows. I'm ruing it in a Windows virtual machine. I'd like to move away from using Windows for this one purpose for backup and instead drop in an Ubuntu Server to run my backup/encryption task using the Ubuntu VM.
Is there a linux system/app built that will allow me to do this in a similar fashion?
Thank you.
برچسب: نویسنده: استخدام کار تاريخ: سه شنبه 31 فروردين 1395 ساعت: 23:45
Thanks! Yeah, I'm going to try it, but I was just going to buy a lens cleaner disc. I can hear it spiing when it's first inserted, but it fails to read. So I was just going to clean it, try it again, and buy a new drive iif need be. I see that Samsung doesn't support these any more with firmware updates. I remember a long time ago I updated the firmware on one of my drives, probably not this one though.
برچسب: نویسنده: استخدام کار تاريخ: سه شنبه 31 فروردين 1395 ساعت: 22:41
A few ways....
Windows Guest to remote Windows Guest Host...
With using Hyper-V, set your VM inteal in the OS to allow remote coection in the System properties. In your VM Guest Host (machine your are coecting from) start a remote desktop coection. At the panel where you see "coect" as an option, to the right of that button will be a link that says "options". Select that link.
The panel that will open will let you select local machine resource options that will be joined to that remote desktop coection. One of the options will be to allow use of the local USB ports... You will need to boot or reboot the VM guest from that coection for it to see a locally attached device, through that local port. Sadly, it doesn't work for everything, but allows "some" local access and resource mapping.
Linux Guest to remote Linux Guest Host
VNC to VNC, or Spice-to-Spice doing the same.
Linux Guest to Windows Guest Host
VNC to VNC compatible app doing the same.
Like I said, with Hyper-v, is limited... and what is gong to bring it close is the coection between (RDP, Spice or VNC) and how the app on the remote coection maps the local resources. The closest it's going to get is the Win-to-Win with RDP (hyper-v's native ties) and anything else, you would be trying to replicate that.
Personally, I have hyper-v here... but use some of my other Virtual Hosts to host most of my VM's. Hyper-V does what it does, but has it's limits. And what it does do, is not always convenient or easy.
برچسب: نویسنده: استخدام کار تاريخ: سه شنبه 31 فروردين 1395 ساعت: 22:41
I am brand new to this and the program i am trying to install says i need libx11, libx11-dev & zlib, zlib-dev. I am showing that they are installed in the application manager but when installing the program i get this
/usr/bin/ld: caot find -lX11
/usr/bin/ld: caot find -lz
Is this something that must be done via command line?
Thanks in advance.
-clueless
برچسب: نویسنده: استخدام کار تاريخ: سه شنبه 31 فروردين 1395 ساعت: 22:41
Hello!
I'm pretty new to the whole linux thing and trying to lea by setting up little local headless server using Ubuntu Server 14.04.
One of the things that i need is a automatic backup to exteal HDD every couple of hours. I also want the files to be encrypted in some way.
After some research i figured the best way to do this would be Duplicity. So i followed this guide, skipping the SSH thing.
I ended up with this script: (located in /home/stef2/scripts/backup_notes.sh)
Code:
#!/bin/sh test -x $(which duplicity) || exit 0 . /root/.passphrase export PASSPHRASE $(which duplicity) --encrypt-key 8BA9D028 /server/temp/_Notes file:///media/transcend/backup/
Code:
PASSPHRASE="<my_passphrase_here>"
Code:
$sudo ls -la /root ... -rwx------ 1 root root 22 Apr 18 16:56 .passphrase ...
Code:
$ sudo gpg --list-keys
/home/stef2/.gnupg/pubring.gpg
------------------------------
pub 2048R/8BA9D028 2016-04-19
uid Butt Pirate (aaa) <my_email>
sub 2048R/96870DC1 2016-04-19
And the script works!
When i run it from the shell, it does the backup:
Code:
$ sudo ./backup_notes.sh Synchronizing remote metadata to local cache... Deleting local /home/stef2/.cache/duplicity/db36b31bd40a4143dea5e32e2b87af6b/duplicity-full-signatures.20160419T112620Z.sigtar.gz (not authoritative at backend). Deleting local /home/stef2/.cache/duplicity/db36b31bd40a4143dea5e32e2b87af6b/duplicity-full.20160419T112620Z.manifest (not authoritative at backend). Deleting local /home/stef2/.cache/duplicity/db36b31bd40a4143dea5e32e2b87af6b/duplicity-inc.20160419T112620Z.to.20160419T115851Z.manifest (not authoritative at backend). Deleting local /home/stef2/.cache/duplicity/db36b31bd40a4143dea5e32e2b87af6b/duplicity-inc.20160419T115851Z.to.20160419T122040Z.manifest (not authoritative at backend). Deleting local /home/stef2/.cache/duplicity/db36b31bd40a4143dea5e32e2b87af6b/duplicity-new-signatures.20160419T112620Z.to.20160419T115851Z.sigtar.gz (not authoritative at backend). Deleting local /home/stef2/.cache/duplicity/db36b31bd40a4143dea5e32e2b87af6b/duplicity-new-signatures.20160419T115851Z.to.20160419T122040Z.sigtar.gz (not authoritative at backend). Last full backup date: none No signatures found, switching to full backup. --------------[ Backup Statistics ]-------------- StartTime 1461068463.72 (Tue Apr 19 15:21:03 2016) EndTime 1461068463.78 (Tue Apr 19 15:21:03 2016) ElapsedTime 0.06 (0.06 seconds) SourceFiles 18 SourceFileSize 1978115 (1.89 MB) NewFiles 18 NewFileSize 1978115 (1.89 MB) DeletedFiles 0 ChangedFiles 0 ChangedFileSize 0 (0 bytes) ChangedDeltaSize 0 (0 bytes) DeltaEntries 18 RawDeltaSize 1977435 (1.89 MB) TotalDestinationSizeChange 88880 (86.8 KB) Errors 0
However, i can't get it to work with cron.
As the script only works for root, i figured i need to use the root's crontab. I've also set for it to run every minute, instead of couple hours, just so i can test it faster, and tried to log the process to file.
Heres root's crontab (/tmp/crontab.WX2EPC/crontab):
Code:
# m h dom mon dow command */1 * * * * /home/stef2/scripts/backup_notes.sh > /var/log/backup_test/log1.log 2>&1
Code:
$ cat /var/log/backup_test/log1.log Synchronizing remote metadata to local cache... Copying duplicity-full-signatures.20160419T122103Z.sigtar.gpg to local cache. GPGError: GPG Failed, see log below: ===== Begin GnuPG log ===== gpg: encrypted with RSA key, ID 96870DC1 gpg: decryption failed: secret key not available ===== End GnuPG log =====
Code:
# */1 * * * * /bin/sh /home/stef2/scripts/backup_notes.sh > /var/log/backup_test/log1.log 2>&1 # */1 * * * * root /home/stef2/scripts/backup_notes.sh/ > /var/log/backup_test/log1.log 2>&1 # */1 * * * * cd /home/stef2/scripts && sudo ./backup_notes.sh > /var/log/backup_test/log1.log 2>&1
I've been stuck on this for many hours and could not find any more ideas on google, so please help a noob out! It feels like the solution i'm missing is very simple one, but i just can't get it!
Also, sorry for any mistakes, i'm not a native speaker and don't use forums much.
- Stef
برچسب: نویسنده: استخدام کار تاريخ: سه شنبه 31 فروردين 1395 ساعت: 21:17
First, I had a backup, so no panic. I just would like to know what happened and what could have been done to recover the data
I was experimenting with Boot Repair Disk on my Ubuntu 15.04 server. I first ran Boot-Info and noted that there was Grub installed on the RAID1 drive as well as the CF/IDE drive that was the bootable OS. I don't know how it got on the RAID1 drive to begin with. I chose the default repair, not advanced. Boot repair proceeded to "restore" Grub on all the hard drives in the system (1 RAID1, 2 non-raid, and CF/IDE drive). After the repair, the RAID1 drive appeared to be empty. The array was reported as "clean" though. I ran Boot-Info again and noted that Grub was still only on the RAID1 drive and the CF/IDE drive as before, not on the other 2 non-RAID drives.
Any obvious answers?
Thanks,
Todd K.
برچسب: نویسنده: استخدام کار تاريخ: سه شنبه 31 فروردين 1395 ساعت: 21:17
Hey folks! I just started a new job that requires me to record video clips from mobile games. I did several hours of research into this, and I simply can't find any easy way to capture both video and audio from my Android phone using Linux. I did find:
I really don't want to try rooting my phone because of the danger of bricking it. And I do need audio, not just video. So my question is: with Android being Linux-based, there has to be some Linux app that grabs audio and video, right?
What am I not seeing?
Hope you can help me. ![]()
برچسب: نویسنده: استخدام کار تاريخ: سه شنبه 31 فروردين 1395 ساعت: 21:17
Hi all,
I recently got a new image for my Raspberry-Pi. I got it flashed to the SD-Card and after the initial config task I installed the openvpn package.
I followed the instructions to setup the server and did: sudo service openvpn restart
To be save I issued a reboot afterwards and when the system was back 'systemctl -status openvpn' shows everything ok
Now I tried to coect with the Android OpenVPN Client (with the newly created mynetwork.ovpn file) but the coection fails with: Coection Timeout.
So I checked the openvpn server lock and saw:
Mon Apr 18 15:03:53 2016 us=304445 ERROR: could not not read Private Key password from stdin
Mon Apr 18 15:03:53 2016 us=304671 Exiting due to fatal error
So the VPN server tries to read the private key password from stdin ?
The previous Pi-Ubuntu didn't had that issue!
How to solve this probelm ?
برچسب: نویسنده: استخدام کار تاريخ: سه شنبه 31 فروردين 1395 ساعت: 20:05
Good evening from Weste Australia.
This is a bit weird perhaps.
I love Lubuntu which I put on older computers to donate to Pensioners, Students etc. Well donate is perhaps slightly wrong. I charge them $20 or a home cooked meal ![]()
What I want to do is create a Lubuntu Games Edition by doing some kind of sudo apt-get install lots of games type command.
That would be similar to my usual sudo apt-get install libreoffice rgbpaint vlc aisleriot lubuntu-restricted-extras for regular programs.
Most of the computers are Pentium 4 with 1Gb Ram.
Silly question but has anyone actually created a list like this? It would save me a lot of time than manually choosing all the games and creating it from scratch.
I've tried SparkyLinux GameOver edition but can never update it properly.
Regards,
Paul
برچسب: نویسنده: استخدام کار تاريخ: سه شنبه 31 فروردين 1395 ساعت: 19:04
Hello,
i bought the LENOVO Yoga 300 and made a fresh install of UBUNTU 16.04 LTS (beta2).
Everything is working out of the box, except hibeate.
When i close the lid and reopen it, the Display remains black. I have to hardreset/restart the System.
Can you please advice me the direction to go, to get this last feature working?
Thank you.
برچسب: نویسنده: استخدام کار تاريخ: سه شنبه 31 فروردين 1395 ساعت: 19:04
Hi!
Just suddenl my Samba server stopped working. I've scheduled server boot at moing 9 pm and I wasn't able to reach samba server with my Windows pc:s. Last evening everything works just fine and there was no modifications between those moments.
Code:
sudo service smbd restart stop: Unknown instance: smbd start/ruing, process 11920 sudo service nmbd restart nmbd stop/waiting nmbd start/ruing
Code:
sudo apt-get autoremove samba samba-commonsudo apt-get autoremove system-config-samba sudo apt-get install samba samba-common sudo apt-get install system-config-samba cifs-utils
Code:
sudo testparm -v Load smb config files from /etc/samba/smb.conf rlimit_max: increasing rlimit_max (1024) to minimum Windows limit (16384) WARNING: The "syslog" option is deprecated WARNING: Ignoring invalid value 'share' for parameter 'security' Error loading services. sudo /etc/init.d/samba status * nmbd is not ruing * smbd is not ruing
برچسب: نویسنده: استخدام کار تاريخ: سه شنبه 31 فروردين 1395 ساعت: 18:03
Thread moved to Networking & Wireless.
Welcome. You are really asking two questions here: how to run a remote machine and how to share files/folders between two machines. Perhaps tackle getting a coection up and sharing files first then post remote machine setup questions in a new thread.
First off, can one machine ping the other and the router?
I find it makes things easier if you set static IPs on the two machines so they don't change anytime.
برچسب: نویسنده: استخدام کار تاريخ: سه شنبه 31 فروردين 1395 ساعت: 17:02
My dual-booted Samsung 140 netbook pc(https://wiki.ubuntu.com/HardwareSupp...hines/Netbooks) is working well with 14.04.4 lts. but sometimes when I shutdown(or during Reboot) my pc, the screen flickers with unrecognised characters(see photo1) and it never shutsdown(or Reboot).In this case I am to press the power button to shutdown..If hold down "ctrl+alt+del" it shows((see photo2) this..
starting store software rfkill state [ok]
starting emergency keypress handling [ok]
starting store sound card state [ok]
stoping store sound card statestate [ok]
stoping store software rfkill state [ok]
starting emergency keypress handling [ok]
stoping emergency keypress handling [ok]
.
.
.
.
.
I am facing this problem from past few weeks. It happened at least 15 - 20 times a total.
did anyone face the same issue? anybody has any idea how to fix this??
Regards.
برچسب: نویسنده: استخدام کار تاريخ: سه شنبه 31 فروردين 1395 ساعت: 14:52
I am ruing Ubuntu 14.04, and I require assistance in how to view images on a bued CD. I have done countless searches, and none tued up specific solutions to my problem.
When I insert the bued CD, the message: "Unable to mount blank CD-R Disc, location is already mounted", appears. I am then prompted to choose a program to read it. Image Viewer, does not recognise CD data. Shotwell, doesn't even show a CD listed in its menu. I do get an icon on my navbar however, and when I click, it shows the title of the disk, with no files listed.
Paradoxically, the images on my bued CD, are read by another computer, ruing Windows.
The optical drive is obviously mounted in Ubuntu. Audio CD's and DVD's, run automatically when they are inserted too. The optical drive is working and the software exists to play other disks. There's seems to be a prejudice against reading bued ones though. You would think it was a bu problem, but the images show up perfectly in Windows, on a separate computer.
So how do I start to look for the problem, in order to fix it?
QUERY: could it be a driver issue? I've looked for driver updates for my Pioneer brand, but it only shows up for "Windows" OS. Do I have to look for a Linux one, or can I just install the Windows and Wine can decipher it?
برچسب: نویسنده: استخدام کار تاريخ: سه شنبه 31 فروردين 1395 ساعت: 13:50
lspci
Code:
04:00.0 Network controller: Realtek Semiconductor Co., Ltd. RTL8191SEvA Wireless LAN Controller (rev 10)
Code:
3: wlp4s0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state DOWN mode DORMANT group default qlen 1000
link/ether 1c:65:9d:15:9f:fe brd ff:ff:ff:ff:ff:ff
Code:
3: wlp4s0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state DOWN group default qlen 1000
link/ether 1c:65:9d:15:9f:fe brd ff:ff:ff:ff:ff:ff
Code:
[ 73.341285] rtl8192se 0000:04:00.0 wlp4s0: renamed from wlan0 [ 74.403692] IPv6: ADDRCONF(NETDEV_UP): wlp4s0: link is not ready [ 74.558762] IPv6: ADDRCONF(NETDEV_UP): wlp4s0: link is not ready [ 74.755532] IPv6: ADDRCONF(NETDEV_UP): wlp4s0: link is not ready
برچسب: نویسنده: استخدام کار تاريخ: سه شنبه 31 فروردين 1395 ساعت: 13:50
So, I have been dreaming of owning my first Mac PC and I finally bought a new, sealed in the box, mid-2015 Apple MacBook Pro 15" with Retina Display laptop and it's been dreamy. I leaed Apple Macintosh OS X 10.11.4 64 bit "El Capitan" quickly and I bought quite a bit of software apps to spruce it up and make it work for me. It's a really nice laptop to own and it's been utterly reliable with no problems whatsoever. I can install and use commercial software products once again too. Almost everything is tightly integrated and the key feature about OS X is that it is designed to work with the Apple hardware which means optimizations. It's an expensive ecosystem and platform, but I think it is well worth the high price. I got mine through a friend at a substantial discount off of the $1,999.99 USD MSRP. I paid $1,399.99 USD while giving my close friend an extra $100.00 USD for this unique opportunity. I can see why there are so many loyal Apple fans and especially of OS X now. It's just a well though out and engineered product that works almost flawlessly. It's designed for normal people to get work and some play done without obsessing about every single minor technical detail. I can get lots of productivity tasks done faster and simpler than my much more expensive and more powerful mid-2015 Zareason Zeto desktop PC system on my discounted Mac laptop.
I am waiting for Apple, Inc. to refresh their Mac Pro sometime in the future. If they do that, then I might purchase a new top of the line model and give away my Zareason Zeto desktop PC system to someone else. As much as I like Ubuntu 64 bit LTS GNU/Linux, Mac has it beat in my opinions if you are willing to pay the extraordinary high prices. Their stuff is wicked expensive, but their higher end products are solid. It's the most user friendly desktop and mobile operating system that I have had the pleasure of using. I think that I will be buying into their ecosystem and platforms gradually over time. Their products are a unique cachet and there's nothing else quite like it.
I am content and happy for now. I will wait until the 2016 Apple Worldwide Developer's Conference in mid-June 2016 and see if they refresh their top of the line Apple MacBook Pro 15" with Retina Display or Mac Pro lineup later this year. I might buy another Apple product later this year again. It would be in my own interest to check out Mac Mall since they are an authorized Apple, Inc. reseller and they have some decent discounts off of identical products sold directly from Apple, Inc. I might save some money by doing business with Mac Mall.
It's just an incredibly well put together laptop unlike the Microsoft Windows or GNU/Linux certified desktops and laptops that I used to own. It functions and feels like a polished product that just works most of the time. I am quite impressed if not stued to this day. It's only been a little under two weeks and I am smitten.
برچسب: نویسنده: استخدام کار تاريخ: سه شنبه 31 فروردين 1395 ساعت: 12:41
I run 64-bit Ubuntu 14.04 and Linux WebEx is a 32-bit only java app, which is not fully functional on a 64-bit system (no audio). So rather than going through gyrations of installing an alteate 32-bit firefox and 32-bit java, I installed virtualbox and 32-bit 14.04 in that. I gave the virtualbox 2.5 GB RAM and 2 CPU threads [I only have 2 core with hyperthreading (4 threads), 8 GB RAM]. WebEx works fine in that, except that whether viewing a WebEx recording or a live WebEx session, the the audio is broken up in bits and pieces for a while until it finally sync's up and works fine after that. I don't have any 32-bit systems at the moment to tell if that is normal or some issue ruing WebEx in the virtualbox. I was just wondering if someone had an idea how to get the audio to sync up quicker in WebEx?
I have Oracle Java 8 installed on both the main 64-bit host and the 32-bit virtualbox system. I don't know if that is required for WebEx, but was required on my main system for thinkorswim stock/option trading platform (which did not work with openjdk).
برچسب: نویسنده: استخدام کار تاريخ: سه شنبه 31 فروردين 1395 ساعت: 12:41